Release 10.1A: OpenEdge Data Management:
Database Administration
SQLLOAD utility
A command-line utility that loads user data from a formatted file into an SQL database.
Syntax
Parameters
uuser_nameSpecifies the user SQLLOAD uses to connect to the database. If you omit the
user_nameandpassword, SQLLOAD prompts you for these parameter values. If you omit theuser_nameand supply a password, SQLLOAD uses the value defined in the USER environment variable.-apasswordSpecifies the
passwordused by the database for authentication.-Ccode_page_nameA case-insensitive character string that specifies the name of the dump file’s code page. If the -
Cparameter specifies a code page name that is not valid, a run-time error is reported. If the -Cparameter does not appear at all, the code page name defaults to the client’s internal code page, which is:
- The value of the client’s SQL_CLIENT_CHARSET environment variable, if set.
- Otherwise, the name of the code page of the client’s locale.
For example, you might use the -
Cparameter to load a dump file whose code page is ISO8859-2, using a Windows client whose code page is MS1250. Although you can accomplish this by setting the client’s SQL_CLIENT_CHARSET environment variable, using the -Cparameter might be easier.-towner_name.table_nameSpecifies a list of one or more tables to load into a database. This parameter is required. Pattern matching is supported, using a percent sign (%) for multiple characters and an underscore (_) for a single character. The pattern matching follows the standard for the
LIKEpredicate in SQL. You can load a single table, a set of tables, or all tables. If you omit the optionalowner_nametable qualifier, SQLLOAD uses the name specified by the -uparameter. The files from which SQLLOAD loads data are not specified in the SQLLOAD syntax. The utility requires that the filename follow the naming conventionowner_name.table_name.dsql.-llog_file_nameSpecifies the file to which SQLLOAD writes errors and statistics. The default is standard output.
-bbadfile_nameSpecifies the file where SQLLOAD writes rows that were not loaded.
-emax_errorsSpecifies the maximum number of errors that SQLLOAD allows before term processing. The default is 50.
-mmaxrowsDirects SQLLOAD to stop loading rows at the specified number.
-nDirects SQLLOAD to check for syntax errors without loading any rows.
-F comma |quoteDirects SQLLOAD to load data in comma-delimited format or quote-delimited format. The default is quote.
db_nameIdentifies the database where you are loading tables. You can load tables into a single database each time you invoke SQLLOAD. There is no option flag preceding the
db_name. This parameter is required, and must be the last parameter specified. The database name is specified in the following way:progress:T:localhost:demosv:jo.SQLLOAD loads user data from a formatted file into an SQL database. Typically, the source file for the load is created by executing the SQLDUMP utility. The SQLLOAD utility can process a source file created by another application or utility, if the format of the file conforms to SQLLOAD requirements. The file extension made available to SQLLOAD for processing must be
.dsql. See the entry on SQLDUMP for a description of the required file format.The SQLLOAD utility reads application data from variable-length text-formatted files and writes the data into the specified database. The column order is identical to the table column order. SQLLOAD reads format and content header records from the dump file. You can load multiple tables in a single execution by specifying multiple table names, separated by commas. Data for one table is from a single dump file. Every source file corresponds to one database table. For example, if you specify 200 tables in the SQLLOAD command, you will load 200 database tables.
The format of the records in the input files is similar to the Progress 4GL
.dfile dump format. See the "SQLDUMP utility" section for a description of the record format. The maximum record length SQLLOAD can process is 32K.Each database record read is share-locked, for consistency. You must ensure that the SQL Server has a lock table large enough to contain one lock for every record in the table. The default lock table size is 10,000 locks.
SQLLOAD writes any errors to standard output and halts the loading process for any error so that data integrity is not compromised.
ExamplesThis example directs the SQLLOAD utility to load the data from two dump files into the
salesdbdatabase. The input files to SQLLOAD must betucker.customers.dsqlandtucker.products.dsql:
This example directs SQLLOAD to load the data from all appropriately named dump files into the specified tables in the salesdb database:
Note
- The
db_namemust be the last parameter given.- Before you can execute SQLLOAD against a database server, the server must be configured to accept SQL connections and must be running.
- The character set used by SQLLOAD must match the character set information recorded in each dump file. If the character sets do not match, the load is rejected. You can use the SQL_CLIENT_CHARSET environment variable to specify a character set.
Each dump file you create with SQLDUMP contains character set information about that file. The character set recorded in the dump file is the client character set. The default character set for all non-JDBC clients is taken from the local operating system through the operating system APIs. JDBC clients use the Unicode UTF-8 character set.
To use a character set different than that used by the operating system, set the SQL_CLIENT_CHARSET environment variable to the name of the preferred character set. You can define any OpenEdge-supported character set name. The name is not case sensitive.
- At run time, SQLLOAD reports an error if it detects a mismatch between the code page of the dump file being loaded and the code page of the client running SQLLOAD.
- By default, SQLLOAD displays
promsgsmessages using the code page corresponding tocode_page_name. That is, if you are restoring a Russian database andcode_page_namespecifies the name of a Russian code page, the client displayspromsgsmessages using the Russian code-page (unless you specify a different code page by setting the client’s SQL_CLIENT_CHARSET_PROMSGS environment variable).- SQLLOAD does not support the following characters in schema names:
- SQLLOAD supports schema names that contain special characters, such as a blank space, a hyphen (-), or pound sign (#). These names must be used as delimited identifiers. Therefore, when specifying names with special characters on a UNIX command line, follow these rules:
- Use double quotes to delimit identifiers.
- So that the command line does not strip the quotes, use a backslash (\) to escape the double quotes used for delimited identifiers.
- Use double quotes to enclose any names with embedded spaces, commas, or characters special to a command shell (such as the Bourne shell). This use of quotes is in addition to quoting delimited identifiers.
For example, to load the table
Yearly Profits, use the following UNIX command-line syntax:
- In Windows, the command interpreter rules for the use of double quotation marks varies from UNIX.
|
Copyright © 2005 Progress Software Corporation www.progress.com Voice: (781) 280-4000 Fax: (781) 280-4095 |